home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / Perl Source ƒ / MacPerl / MPWindow.c < prev    next >
Text File  |  1993-10-22  |  27KB  |  1,106 lines

  1. /*********************************************************************
  2. Project    :    MacPerl            -    Real Perl Application
  3. File        :    MPWindow.c        -
  4. Author    :    Matthias Neeracher
  5.  
  6. A lot of this code is borrowed from 7Edit written by
  7. Apple Developer Support UK
  8.  
  9. Started    :    17Mar93                                Language    :    MPW C
  10. Modified    :    29May93    MN    Compiles correctly
  11.                 30May93    MN    Support Console Windows
  12.                 06Aug93    MN    Draw pretty icons
  13.                 17Aug93    MN    A little more defensiveness
  14. Last        :    17Aug93
  15. *********************************************************************/
  16.  
  17. #include <Resources.h>
  18. #include <Scrap.h>
  19. #include <Packages.h>
  20. #include <PLStringFuncs.h>
  21. #include <Icons.h>
  22. #include "MPWindow.h"
  23. #include "MPConsole.h"
  24. #include "MPEditions.h"
  25.  
  26. #define    kControlInvisible    0
  27. #define    kControlVisible      0xFF
  28. #define    kScrollbarWidth        16
  29. #define    kScrollbarAdjust        (kScrollbarWidth - 1)
  30. #define    kScrollTweek           2
  31. #define    kTextOffset                5
  32. #define    kButtonScroll          10
  33.  
  34. #define    kMaxPages              1000 /* Assumes pages > 32 pixels high */
  35.  
  36. #define    kHOffset                        20   /* Stagger window offsets */
  37. #define    kVOffset                        20
  38.  
  39. #define    kTBarHeight                20
  40. #define    kMBarHeight                20
  41.  
  42. typedef short PageEndsArray[kMaxPages];
  43.  
  44. #pragma segment Window
  45.  
  46. pascal DPtr DPtrFromWindowPtr(WindowPtr w)
  47. {
  48.     if (w)
  49.         return((DPtr)GetWRefCon(w));
  50.     else
  51.         return(nil);
  52. } /* DPtrFromWindowPtr */
  53.  
  54. #pragma segment main
  55.  
  56. /*
  57.   Scroll the TERec around to match up to the potentially updated scrollbar
  58.   values. This is really useful when the window resizes such that the
  59.   scrollbars become inactive and the TERec had been previously scrolled.
  60. */
  61. pascal void AdjustTE(DPtr theDoc)
  62. {
  63.     short    h;
  64.     short    v;
  65.     TEHandle myText;
  66.  
  67.     myText = theDoc->theText;
  68.     h =
  69.         ((*myText)->viewRect.left - (*myText)->destRect.left) -
  70.         GetCtlValue(theDoc->hScrollBar) + kTextOffset;
  71.  
  72.     v =
  73.         ((*myText)->viewRect.top - (*myText)->destRect.top) -
  74.         GetCtlValue(theDoc->vScrollBar) + kTextOffset;
  75.  
  76.     if (h || v) {
  77.         TEScroll(h, v, theDoc->theText);
  78.         DrawPageExtras(theDoc);
  79.     }
  80. }  /* AdjustTE */
  81.  
  82.  
  83. /*Calculate the new control maximum value and current value, whether it is the horizontal or
  84. vertical scrollbar. The vertical max is calculated by comparing the number of lines to the
  85. vertical size of the viewRect. The horizontal max is calculated by comparing the maximum document
  86. width to the width of the viewRect. The current values are set by comparing the offset between
  87. the view and destination rects. If necessary and we canRedraw, have the control be re-drawn by
  88. calling ShowControl.*/
  89.  
  90. /*TEStyleSample-vertical max originally used line by line calculations-lineheight was a
  91. constant value so it was easy to figure out what the range should be and pin the value
  92. within range. Now we need to use max and min values in pixels rather than in nlines*/
  93.  
  94. #pragma segment main
  95.  
  96. pascal void AdjustHV(
  97.     Boolean        isVert,
  98.     ControlHandle  control,
  99.     DPtr           theDoc,
  100.     Boolean        canRedraw)
  101. {
  102.     TEHandle    docTE;
  103.     short       value;
  104.     short           max;
  105.     short           oldValue;
  106.     short           oldMax;
  107.     Rect             sizeRect;
  108.  
  109.     sizeRect = theDoc->pageSize;
  110.     docTE    = theDoc->theText;
  111.  
  112.     oldValue = GetCtlValue(control);
  113.     oldMax   = GetCtlMax(control);
  114.     if (isVert)
  115.         max = (*docTE)->nLines*(*docTE)->lineHeight - ((*docTE)->viewRect.bottom - (*docTE)->viewRect.top);
  116.     else
  117.         max = sizeRect.right - ((*docTE)->viewRect.right - (*docTE)->viewRect.left);
  118.  
  119.     max += kTextOffset + kTextOffset; /* Allow over scroll by kTextOffset */
  120.  
  121.     if (max < 0)
  122.         max = 0; /* check for negative values */
  123.  
  124.     SetCtlMax(control, max);
  125.  
  126.     if (isVert)
  127.         value = (*docTE)->viewRect.top - (*docTE)->destRect.top;
  128.     else
  129.         value = (*docTE)->viewRect.left - (*docTE)->destRect.left;
  130.  
  131.     value += kTextOffset;
  132.  
  133.     if (value < 0) {
  134.         TEScroll(isVert ? 0 : value, isVert ? value : 0, docTE);
  135.         DrawPageExtras(theDoc);
  136.  
  137.         value = 0;
  138.     } else if (value > max) {
  139.         TEScroll(isVert ? 0 : value-max, isVert ? value-max : 0, docTE);
  140.         DrawPageExtras(theDoc);
  141.         
  142.         value = max; /* pin the value to within range */
  143.     }
  144.     SetCtlValue(control, value);
  145.     if (canRedraw && ((max != oldMax) || (value != oldValue)))
  146.         ShowControl(control); /* check to see if the control can be re-drawn */
  147. } /* AdjustHV */
  148.  
  149. #pragma segment Main
  150.  
  151. pascal void AdjustScrollValues(DPtr theDoc, Boolean canRedraw)
  152. {
  153.     AdjustHV(true,  theDoc->vScrollBar, theDoc, canRedraw);
  154.     AdjustHV(false, theDoc->hScrollBar, theDoc, canRedraw);
  155. }        /* AdjustScrollValues */
  156.  
  157. pascal void GetTERect(WindowPtr window, Rect  *teRect)
  158. {
  159.      *teRect = window->portRect;
  160.      (*teRect).bottom -= kScrollbarAdjust; /* and for the scrollbars */
  161.      (*teRect).right  -= kScrollbarAdjust;
  162. }         /* GetTERect */
  163.  
  164. /* Re-calculate the position and size of the viewRect and the scrollbars.
  165.   kScrollTweek compensates for off-by-one requirements of the scrollbars
  166.   to have borders coincide with the growbox. */
  167.  
  168. pascal void AdjustScrollSizes(DPtr theDoc)
  169. {
  170.     Rect    teRect;
  171.     Rect    myPortRect;
  172.  
  173.     GetTERect(theDoc->theWindow, &teRect); /*start with teRect*/
  174.     myPortRect = theDoc->theWindow->portRect;
  175.  
  176.     (*(theDoc->theText))->viewRect = teRect;
  177.  
  178.     MoveControl(theDoc->vScrollBar, myPortRect.right - kScrollbarAdjust, -1);
  179.     SizeControl(
  180.         theDoc->vScrollBar,
  181.         kScrollbarWidth,
  182.         (myPortRect.bottom - myPortRect.top) - (kScrollbarAdjust - kScrollTweek));
  183.  
  184.     MoveControl(theDoc->hScrollBar, 31, myPortRect.bottom - kScrollbarAdjust);
  185.     SizeControl(
  186.         theDoc->hScrollBar,
  187.         (myPortRect.right - myPortRect.left) - (kScrollbarAdjust - kScrollTweek + 32),
  188.         kScrollbarWidth);
  189. }        /* AdjustScrollSizes */
  190.  
  191. #pragma segment Window
  192.  
  193. /* Turn off the controls by jamming a zero into their contrlVis fields
  194.   (HideControl erases them and we don't want that). If the controls are to
  195.   be resized as well, call the procedure to do that, then call the procedure
  196.   to adjust the maximum and current values. Finally reset the controls
  197.   to be visible if not in background. */
  198.  
  199. pascal void AdjustScrollbars(DPtr theDoc, Boolean  needsResize)
  200. {
  201.     Boolean    background = gInBackground || theDoc->theWindow != gActiveWindow;
  202.     
  203.     (*(theDoc->vScrollBar))->contrlVis = kControlInvisible; /* turn them off */
  204.     (*(theDoc->hScrollBar))->contrlVis = kControlInvisible;
  205.  
  206.     if (needsResize) /* move and size if needed */
  207.         AdjustScrollSizes(theDoc);
  208.  
  209.     AdjustScrollValues(theDoc, !needsResize && !background); /* fool with max and current value */
  210.  
  211.      /* Now, restore visibility in case we never had to ShowControl during adjustment */
  212.  
  213.     if (!background) {
  214.         (*(theDoc->vScrollBar))->contrlVis = kControlVisible; /* turn them on */
  215.         (*(theDoc->hScrollBar))->contrlVis = kControlVisible;
  216.     } else { /* make sure they stay invisible */
  217.         if ((*(theDoc->vScrollBar))->contrlVis)
  218.             HideControl(theDoc->vScrollBar);
  219.         if ((*(theDoc->vScrollBar))->contrlVis)
  220.             HideControl(theDoc->hScrollBar);
  221.     }
  222. }        /* AdjustScrollbars */
  223.  
  224. #pragma segment Window
  225.  
  226. pascal void GetWinContentRect(WindowPtr theWindow, Rect *r)
  227. {
  228.     *r         = theWindow->portRect;
  229.     r->right  -= kScrollbarAdjust;
  230.     r->bottom -= kScrollbarAdjust;
  231. }  /* GetWinContentRect */
  232.  
  233. #pragma segment Window
  234.  
  235. pascal void InvalidateDocument(DPtr theDoc)
  236. {
  237.     GrafPtr oldPort;
  238.  
  239.     GetPort(&oldPort);
  240.     SetPort(theDoc->theWindow);
  241.     InvalRect(&theDoc->theWindow->portRect);
  242.     SetPort(oldPort);
  243. }
  244.  
  245. /* Called when the window has been resized to fix up the controls and content */
  246.  
  247. pascal void ResizeWindow(DPtr theDoc)
  248. {
  249.     AdjustScrollbars(theDoc, true);
  250.     AdjustTE(theDoc);
  251.     InvalidateDocument(theDoc);
  252. }         /* ResizeWindow */
  253.  
  254. /* Called when the window has been resized to fix up the controls and content */
  255.  
  256. pascal void ResizePageSetupForDocument(DPtr theDoc)
  257. {
  258.     theDoc->pageSize = (*(theDoc->thePrintSetup))->prInfo.rPage;
  259.  
  260.     OffsetRect(&(theDoc->pageSize), -theDoc->pageSize.left, -theDoc->pageSize.top);
  261.  
  262.     (*(theDoc->theText))->destRect.right = (*(theDoc->theText))->destRect.left +
  263.                                                         theDoc->pageSize.right;
  264.  
  265.     TECalText(theDoc->theText);
  266.  
  267.     ResizeWindow(theDoc);
  268. }         /* ResizePageSetupForDocument */
  269.  
  270. #pragma segment Main
  271.  
  272. /* Common algorithm for setting the new value of a control. It returns the actual amount
  273. the value of the control changed. Note the pinning is done for the sake of returning
  274. the amount the control value changed. */
  275.  
  276. pascal void CommonAction(ControlHandle control, short *amount)
  277. {
  278.     short   value;
  279.     short   max;
  280.  
  281.     value   = GetCtlValue(control); /* get current value */
  282.     max     = GetCtlMax(control); /* and max value */
  283.     *amount = value - *amount;
  284.     if (*amount < 0)
  285.           *amount = 0;
  286.     else if (*amount > max)
  287.         *amount = max;
  288.  
  289.     SetCtlValue(control, *amount);
  290.     *amount = value - *amount; /* calculate true change */
  291. }         /* CommonAction */
  292.  
  293. #pragma segment Main
  294.  
  295. /* Determines how much to change the value of the vertical scrollbar by and how
  296.   much to scroll the TE record. */
  297.  
  298. pascal void VActionProc(ControlHandle control, short part)
  299. {
  300.     short           amount;
  301.     WindowPtr       window;
  302.     DPtr            theDoc;
  303.  
  304.      if (part) {
  305.           window = (*control)->contrlOwner;
  306.         theDoc = DPtrFromWindowPtr(window);
  307.         switch (part) {
  308.         case inUpButton:
  309.         case inDownButton:
  310.             amount = 24;
  311.             break;
  312.  
  313.         case inPageUp:
  314.         case inPageDown:
  315.             amount = (*(theDoc->theText))->viewRect.bottom -
  316.                         (*(theDoc->theText))->viewRect.top;
  317.             break;
  318.         }   /* case */
  319.  
  320.         if (part == inDownButton || part == inPageDown)
  321.              amount = -amount; /* reverse direction */
  322.  
  323.         CommonAction(control, &amount);
  324.  
  325.         if (amount) {
  326.             TEScroll(0, amount, theDoc->theText);
  327.             DrawPageExtras(theDoc);
  328.         }
  329.     }     /* if */
  330. }  /* VActionProc */
  331.  
  332. #pragma segment Main
  333.  
  334. /* Determines how much to change the value of the horizontal scrollbar by and how
  335.   much to scroll the TE record. */
  336.  
  337. pascal void HActionProc(ControlHandle control, short part)
  338. {
  339.     short      amount;
  340.     WindowPtr  window;
  341.     DPtr       theDoc;
  342.  
  343.     if (part) {
  344.         window = (*control)->contrlOwner;
  345.         theDoc = DPtrFromWindowPtr(window);
  346.         switch (part) {
  347.         case  inUpButton:
  348.         case  inDownButton:
  349.             amount = kButtonScroll; /* a few pixels */
  350.             break;
  351.         case  inPageUp:
  352.         case  inPageDown:
  353.             amount = (*(theDoc->theText))->viewRect.right -
  354.                         (*(theDoc->theText))->viewRect.left; /* a page */
  355.             break;
  356.         }   /* switch */
  357.         if (part == inDownButton || part == inPageDown)
  358.             amount = - amount; /* reverse direction */
  359.  
  360.         CommonAction(control, &amount);
  361.         if (amount) {
  362.             TEScroll(amount, 0, theDoc->theText);
  363.             DrawPageExtras(theDoc);
  364.         }
  365.     }     /* if */
  366. }         /* HActionProc */
  367.  
  368. /**-----------------------------------------------------------------------
  369.         Name:         ShowSelect
  370.         Purpose:        Scrolls the text selection into view.
  371.     -----------------------------------------------------------------------**/
  372.  
  373. #pragma segment Window
  374.  
  375. pascal void ShowSelect(DPtr theDoc)
  376. {
  377.     if (!theDoc)
  378.         return;
  379.         
  380.      AdjustScrollbars(theDoc, false);
  381.  
  382.     /*
  383.         Let TextEdit do the hard work of keeping the selection visible…
  384.     */
  385.  
  386.     TEAutoView(true, theDoc->theText);
  387.     TESelView(theDoc->theText);
  388.     TEAutoView(false, theDoc->theText);
  389.  
  390.     /*
  391.         Now rematch the text and the scrollbars…
  392.     */
  393.  
  394.     SetCtlValue(
  395.         theDoc->hScrollBar,
  396.         (*(theDoc->theText))->viewRect.left -
  397.         (*(theDoc->theText))->destRect.left + kTextOffset);
  398.  
  399.     SetCtlValue(
  400.         theDoc->vScrollBar,
  401.         (*(theDoc->theText))->viewRect.top -
  402.         (*(theDoc->theText))->destRect.top  + kTextOffset);
  403. }  /* ShowSelect */
  404.  
  405. #pragma segment Window
  406.  
  407. pascal void OffsetWindow(WindowPtr aWindow)
  408. {
  409.     short theWidth;
  410.     short theHeight;
  411.     short theHScreen;
  412.     short theVScreen;
  413.     short xWidth;
  414.     short xHeight;
  415.     short hMax;
  416.     short vMax;
  417.     short wLeft;
  418.     short wTop;
  419.  
  420.     theWidth  = aWindow->portRect.right - aWindow->portRect.left;
  421.     theHeight = aWindow->portRect.bottom - aWindow->portRect.top + kTBarHeight;
  422.  
  423.     theHScreen = qd.screenBits.bounds.right  - qd.screenBits.bounds.left;
  424.     theVScreen = qd.screenBits.bounds.bottom - qd.screenBits.bounds.top;
  425.  
  426.     xWidth  = theHScreen - theWidth;
  427.     xHeight = theVScreen - (theHeight + kMBarHeight);
  428.  
  429.     hMax = (xWidth / kVOffset) + 1;
  430.     vMax = (xHeight / kVOffset) + 1;
  431.  
  432.     gWCount++;
  433.  
  434.     wLeft = (gWCount % hMax) * kVOffset;
  435.     wTop  = ((gWCount % vMax) * kVOffset) + kTBarHeight + kMBarHeight;
  436.  
  437.     MoveWindow(aWindow, wLeft, wTop, false);
  438. }
  439.  
  440.  
  441. /* Returns the update region in local coordinates */
  442.  
  443. pascal void GetLocalUpdateRgn(WindowPtr window, RgnHandle localRgn)
  444. {
  445.     CopyRgn(((WindowPeek)window)->updateRgn, localRgn); /* save old update region */
  446.     OffsetRgn(localRgn, window->portBits.bounds.left, window->portBits.bounds.top); /* convert to local coords */
  447. }          /* GetLocalUpdateRgn */
  448.  
  449. #pragma segment Window
  450.  
  451. pascal void IssueZoomCommand(WindowPtr whichWindow, short whichPart);
  452. pascal void IssueSizeWindow(WindowPtr whichWindow,short newHSize, short newVSize);
  453.  
  454. pascal void MyGrowWindow(WindowPtr w, Point p)
  455. {
  456.     GrafPtr savePort;
  457.     long    theResult;
  458.     Rect    r;
  459.  
  460.     GetPort(&savePort);
  461.     SetPort(w);
  462.     SetRect(&r, 80, 80, qd.screenBits.bounds.right, qd.screenBits.bounds.bottom);
  463.     theResult = GrowWindow(w, p, &r);
  464.     if (theResult)
  465.         IssueSizeWindow(w, LoWord(theResult), HiWord(theResult));
  466.  
  467.     SetPort(savePort);
  468. }
  469.  
  470. #pragma segment Window
  471.  
  472. pascal void DoZoom(WindowPtr w, short c, Point     p)
  473. {
  474.     GrafPtr savePort;
  475.  
  476.      GetPort(&savePort);
  477.     SetPort(w);
  478.      if (TrackBox(w, p, c)) {
  479.         EraseRect(&w->portRect);
  480.         IssueZoomCommand(w, c);
  481.     }
  482. }
  483.  
  484. #pragma segment Window
  485.  
  486. pascal void DoContent(WindowPtr theWindow, EventRecord * theEvent)
  487. {
  488.     short         cntlCode;
  489.     short         part;
  490.     ControlHandle theControl;
  491.     GrafPtr       savePort;
  492.     Boolean       extend;
  493.     DPtr          theDoc;
  494.     short         value;
  495.  
  496.     GetPort(&savePort);
  497.     SetPort(theWindow);
  498.     theDoc = DPtrFromWindowPtr(theWindow);
  499.  
  500.     GlobalToLocal(&theEvent->where);
  501.     cntlCode = FindControl(theEvent->where, theWindow, &theControl);
  502.  
  503.     /*only extend the selection if the shiftkey is down*/
  504.     if (cntlCode == 0) {
  505.           extend = (theEvent->modifiers & shiftKey) != 0;
  506.  
  507.         if (PtInRect(theEvent->where, &(*(theDoc->theText))->viewRect))
  508.             TEClick(theEvent->where, extend, theDoc->theText);
  509.     } else if (cntlCode == inThumb) {
  510.         value = GetCtlValue(theControl);
  511.         part  = TrackControl(theControl, theEvent->where, nil);
  512.         if (part) {
  513.             value -= GetCtlValue(theControl);
  514.             if (value) {
  515.                 if (theControl == theDoc->vScrollBar)
  516.                     TEScroll(0, value, theDoc->theText);
  517.                 else
  518.                     TEScroll(value, 0, theDoc->theText);
  519.                 DrawPageExtras(theDoc);
  520.             }
  521.         } /* if */
  522.     } else
  523.         if (theControl == theDoc->vScrollBar)
  524.             part = TrackControl(theControl, theEvent->where, (ProcPtr)VActionProc);
  525.         else
  526.             part = TrackControl(theControl, theEvent->where, (ProcPtr)HActionProc);
  527.  
  528.     SetPort(savePort);
  529. }
  530.  
  531. #pragma segment Window
  532.  
  533. pascal OSErr DoActivate(WindowPtr theWindow, Boolean   activate)
  534. {
  535.     OSErr err;
  536.     Rect  r;
  537.     DPtr  theDoc;
  538.  
  539.     err = noErr;
  540.  
  541.     if (theWindow) {
  542.         theDoc = DPtrFromWindowPtr(theWindow);
  543.         SetPort(theWindow);
  544.         DrawGrowIcon(theWindow);
  545.         GetWinContentRect(theWindow, &r);
  546.         InvalRect(&r);
  547.         if (activate) {
  548.             gActiveWindow = theWindow;
  549.             
  550.             TEActivate(theDoc->theText);
  551.             ShowControl(theDoc->vScrollBar);
  552.             ShowControl(theDoc->hScrollBar);
  553.             DisableItem(myMenus[editM], undoCommand);
  554.             err = TEFromScrap();
  555.         } else {
  556.             gActiveWindow = nil;
  557.             
  558.             TEDeactivate(theDoc->theText);
  559.             HideControl(theDoc->vScrollBar);
  560.             HideControl(theDoc->hScrollBar);
  561.             err = ZeroScrap();
  562.             err = TEToScrap();
  563.         }
  564.     }
  565.  
  566.       return err;
  567. }
  568.  
  569. #pragma segment Window
  570.  
  571. pascal void GetPageEnds(
  572.     short          pageHeight,
  573.     TEHandle       theText,
  574.     PageEndsArray  pageBounds,
  575.     short          *nPages)
  576. {
  577.     short  pageBase;      /* total pixel offset of pages so far */
  578.     short  thisLine;
  579.     short  lastLine;
  580.     short  pageSoFar;
  581.     short  thisPage;      /* Current page being calced */
  582.     short  thisLineH;     /* Height of text line */
  583.     short  pageFirstLine; /* Line # of top of page */
  584.  
  585.     pageBase   = 0;
  586.     thisLine   = 1;
  587.     lastLine   = (*theText)->nLines;
  588.  
  589.     thisPage   = 0;
  590.     pageSoFar  = 0;
  591.     while ((thisLine <= lastLine) || (pageSoFar!=0)) {
  592.         pageFirstLine = thisLine;
  593.         thisLineH     = TEGetHeight(thisLine, thisLine, theText);
  594.  
  595.         while ((thisLineH+pageSoFar<pageHeight) && (thisLine <= lastLine)) {
  596.             pageSoFar += thisLineH;
  597.             thisLine++;
  598.             thisLineH = TEGetHeight(thisLine, thisLine, theText);
  599.         }
  600.  
  601.         if (pageSoFar) {
  602.             pageBounds[thisPage] = pageSoFar+pageBase;
  603.             pageBase  = pageBounds[thisPage];
  604.             thisPage++;
  605.             pageSoFar = 0;
  606.         }
  607.  
  608.         /*
  609.             Special case text line taller than page
  610.         */
  611.  
  612.         if ((thisLine  == pageFirstLine) && (thisLineH > pageHeight)) {
  613.             do {
  614.                 pageBounds[thisPage] = pageBase+pageHeight;
  615.                 pageBase   = pageBounds[thisPage];
  616.                 thisPage  += 1;
  617.                 thisLineH -= pageHeight;
  618.             } while (thisLineH >= pageHeight);
  619.             pageSoFar = thisLineH; /* Carry bottom of large line to next page */
  620.             thisLine += 1; /* carry xs on as pageSoFar and start measuring next line */
  621.         }
  622.     }
  623.  
  624.     *nPages = thisPage;
  625. }  /* GetPageEnds */
  626.  
  627. pascal void DrawPageBreaks(DPtr theDoc)
  628. {
  629.     PageEndsArray    pageEnds;
  630.     short           nPages;
  631.     short           ctr;
  632.     short           lineBase;
  633.     short           pageHeight;
  634.     Rect            viewRect;
  635.  
  636.     pageHeight = theDoc->pageSize.bottom - theDoc->pageSize.top;
  637.  
  638.     GetPageEnds(pageHeight, theDoc->theText, pageEnds, &nPages);
  639.  
  640.     lineBase = (*(theDoc->theText))->destRect.top;
  641.     viewRect = (*(theDoc->theText))->viewRect;
  642.  
  643.     PenPat(&qd.gray);
  644.     for (ctr = 0; ctr<nPages-1; ctr++) {
  645.         MoveTo(viewRect.left, lineBase+pageEnds[ctr]);
  646.         LineTo(viewRect.right,lineBase+pageEnds[ctr]);
  647.     }
  648.     PenNormal();
  649. } /*    DrawPageBreaks */
  650.  
  651. pascal void DrawPageExtras(DPtr theDoc)
  652. {
  653.     GrafPtr       oldPort;
  654.     RgnHandle    oldClip;
  655.     Rect              rectToClip;
  656.  
  657.     GetPort(&oldPort);
  658.     SetPort(theDoc->theWindow);
  659.  
  660.     oldClip = NewRgn();
  661.     GetClip(oldClip);
  662.  
  663.     GetWinContentRect(theDoc->theWindow,&rectToClip);
  664.     ClipRect(&rectToClip);
  665.  
  666. #ifndef RUNTIME
  667.     /* draw the borders */
  668.  
  669.     if (theDoc->kind == kDocumentWindow && theDoc->u.reg.showBorders)
  670.         ShowSectionBorders(theDoc);
  671. #endif
  672.  
  673.     /* and then the page breaks */
  674.     /* DrawPageBreaks(theDoc);  Take the page breaks and shove 'em MN */
  675.  
  676.     SetClip(oldClip);
  677.  
  678.     DisposeRgn(oldClip);
  679.  
  680.     SetPort(oldPort);
  681. }  /* DrawPageExtras */
  682.  
  683. #ifndef RUNTIME
  684. #define PlotResMiniIcon(id, r)    PlotIconID(r, atNone, ttNone, id)
  685. #endif
  686.  
  687. pascal void DoUpdate(DPtr theDoc)
  688. {
  689.     WindowPtr     aWindow;
  690.     GrafPtr       savePort;
  691.     Rect             rectClip;
  692.     Rect             r;
  693.     short            icmVBase;
  694.  
  695.     aWindow = theDoc->theWindow;
  696.     GetPort(&savePort);
  697.     SetPort(aWindow);
  698.     BeginUpdate(aWindow);
  699.  
  700.     ClipRect(&aWindow->portRect);
  701.     EraseRect(&aWindow->portRect);
  702.     
  703.     icmVBase = aWindow->portRect.bottom - 13;
  704.     
  705.     SetRect(&r, 2, icmVBase, 18, icmVBase+12);
  706.     switch (theDoc->lastState & 0x000F) {
  707.     case stateConsole:
  708.         PlotResMiniIcon(ConsoleSICNID, &r);
  709.         break;
  710.     case stateDocument:
  711.         PlotResMiniIcon(DocumentSICNID, &r);
  712.         break;
  713.     }
  714.     SetRect(&r, 18, icmVBase, 34, icmVBase+12);
  715.     switch (theDoc->lastState & 0x00F0) {
  716.     case stateRdWr:
  717.         PlotResMiniIcon(EnabledSICNID, &r);
  718.         break;
  719.     case stateRdOnly:
  720.         PlotResMiniIcon(ReadOnlySICNID, &r);
  721.         break;
  722.     case stateBlocked:
  723.         PlotResMiniIcon(BlockedSICNID, &r);
  724.         break;
  725.     }
  726.     
  727.     DrawControls(aWindow);
  728.     DrawGrowIcon(aWindow);
  729.  
  730.     GetWinContentRect(aWindow, &rectClip);
  731.     ClipRect(&rectClip);
  732.  
  733.     TEUpdate(&aWindow->portRect, theDoc->theText);
  734.  
  735.     DrawPageExtras(theDoc);
  736.  
  737.     EndUpdate(aWindow);
  738.     ClipRect(&aWindow->portRect);
  739.  
  740.     SetPort(savePort);
  741. } /* DoUpdate */
  742.  
  743. #pragma segment Window
  744.  
  745. pascal DPtr NewDocument(Boolean isForOldDoc, WindowKind kind)
  746. {
  747.     short                resFile;
  748.     Rect           destRect;
  749.     Rect           viewRect;
  750.     Rect           vScrollRect;
  751.     Rect           hScrollRect;
  752.     DPtr           myDoc;
  753.     WindowPtr      myWindow;
  754.     ControlHandle  vScroll;
  755.     ControlHandle  hScroll;
  756.     Str255         theName;
  757.     Str255         newNumber;
  758.  
  759.     myDoc = nil;
  760.     myWindow = GetNewWindow(WindowTemplates+kind, nil, (WindowPtr)-1);
  761.  
  762.     if (!myWindow)
  763.         return nil;
  764.  
  765.     if (!isForOldDoc && kind == kDocumentWindow) {
  766.         GetWTitle(myWindow, theName);
  767.         NumToString(++gNewDocCount, newNumber);
  768.         if (gNewDocCount>1) {
  769.             PLstrcat(theName, "\p #");
  770.             PLstrcat(theName, newNumber);
  771.             SetWTitle(myWindow, theName);
  772.         }
  773.     }
  774.  
  775.     OffsetWindow(myWindow);
  776.     SetPort(myWindow);
  777.  
  778.     myDoc = (DPtr)NewPtr(sizeof(DocRec));
  779.  
  780.     SetWRefCon(myWindow, (long)myDoc);
  781.  
  782.     myDoc->theWindow = myWindow;
  783.  
  784.     vScrollRect = myWindow->portRect;
  785.  
  786.     vScrollRect.left  = vScrollRect.right - kScrollbarAdjust;
  787.     vScrollRect.right = vScrollRect.left  + kScrollbarWidth;
  788.  
  789.     vScrollRect.bottom = vScrollRect.bottom - 14;
  790.     vScrollRect.top    = vScrollRect.top - 1;
  791.  
  792.     vScroll = NewControl(myWindow, &vScrollRect, "", true, 0, 0, 0, scrollBarProc, 0);
  793.  
  794.     hScrollRect = myWindow->portRect;
  795.     hScrollRect.top = hScrollRect.bottom - kScrollbarAdjust;
  796.     hScrollRect.bottom = hScrollRect.top + kScrollbarWidth;
  797.  
  798.     hScrollRect.right = hScrollRect.right - 14;
  799.     hScrollRect.left  = hScrollRect.left + 31;
  800.     hScroll = NewControl(myWindow, &hScrollRect, "", true, 0, 0, 0, scrollBarProc, 0);
  801.  
  802.     myDoc->vScrollBar = vScroll;
  803.     myDoc->hScrollBar = hScroll;
  804.     myDoc->type            = kPlainTextDoc;
  805.     myDoc->kind         = kind;
  806.     myDoc->dirty         = false;
  807.  
  808.     if (kind == kDocumentWindow) {
  809.         myDoc->u.reg.lastID            = 0;
  810.         myDoc->u.reg.firstSection    = nil;
  811.         myDoc->u.reg.lastSection    = nil;
  812.         myDoc->u.reg.numSections    = 0;
  813.         myDoc->u.reg.everSaved     = false;
  814.         myDoc->u.reg.showBorders     = false;
  815.         
  816.         myDoc->lastState                = stateDocument + stateRdWr;
  817.     } else {
  818.         myDoc->u.cons.next            = gConsoleList;
  819.         myDoc->u.cons.cookie            = nil;
  820.         myDoc->u.cons.fence            = 0;
  821.         myDoc->u.cons.memory            = 20000;
  822.         myDoc->u.cons.selected        = false;
  823.  
  824.         gConsoleList = myDoc;
  825.  
  826.         myDoc->lastState                = stateConsole + stateBlocked;
  827.     }
  828.  
  829.     GetTERect(myWindow, &viewRect);
  830.     destRect = viewRect;
  831.  
  832.     myDoc->thePrintSetup = (THPrint)NewHandle(sizeof(TPrint));
  833.  
  834.     resFile = CurResFile();
  835.     
  836.     PrOpen();
  837.     PrintDefault(myDoc->thePrintSetup);
  838.     PrClose();
  839.     
  840.     UseResFile(resFile);
  841.  
  842.     myDoc->pageSize = (*(myDoc->thePrintSetup))->prInfo.rPage;
  843.     OffsetRect(&myDoc->pageSize, -myDoc->pageSize.left, -myDoc->pageSize.top);
  844.  
  845.     destRect.right = destRect.left + myDoc->pageSize.right;
  846.  
  847.     OffsetRect(&destRect, kTextOffset, kTextOffset);
  848.  
  849.     TextFont(gFormat.font);
  850.     TextSize(gFormat.size);
  851.     TextFace(0);
  852.  
  853.     myDoc->theText = TENew(&destRect, &viewRect);
  854.     
  855.     (*myDoc->theText)->crOnly = -1;
  856.     
  857.     /*
  858.     SetClikLoop(@AutoScroll, myDoc->theText);
  859.     */
  860.  
  861.     myDoc->theFileName[0] = 0;
  862.     myDoc->theWindow      = myWindow;
  863.  
  864.     ResizeWindow(myDoc);
  865.     
  866.     RegisterDocument(myDoc);
  867.     
  868.     return(myDoc);
  869. }
  870.  
  871. #pragma segment Window
  872.  
  873. pascal void CloseMyWindow(WindowPtr aWindow)
  874. {
  875.     DPtr     aDocument;
  876.     TEHandle theText;
  877.  
  878.     DoHideWindow(aWindow);
  879.     aDocument = DPtrFromWindowPtr(aWindow);
  880.  
  881.     UnregisterDocument(aDocument);
  882.     
  883.     if (aDocument->kind != kDocumentWindow) {
  884.         CloseConsole(aDocument->u.cons.cookie);
  885.         
  886.         if (gConsoleList == aDocument)
  887.             gConsoleList = aDocument->u.cons.next;
  888.         else {
  889.             DPtr doc = gConsoleList;
  890.             while (doc->u.cons.next != aDocument)
  891.                 doc = doc->u.cons.next;
  892.             doc->u.cons.next = aDocument->u.cons.next;
  893.         }
  894.     }
  895.     
  896.     theText   = aDocument->theText;
  897.     TEDispose(theText);
  898.  
  899.     if (aDocument->thePrintSetup)
  900.         DisposHandle((Handle)aDocument->thePrintSetup);
  901.  
  902.     DisposPtr((Ptr)aDocument);
  903.     DisposeWindow(aWindow);
  904.  
  905.     gWCount--;
  906. }
  907.  
  908. /*
  909.     Name     : PrintWindow
  910.     Function : Prints the document supplied in theDoc. askUser controls interaction
  911.                   with the user.
  912.  
  913.                          Uses extra memory equal to the size of the textedit use in the
  914.                          printed document.
  915. */
  916.  
  917. pascal void PrintWindow(DPtr theDoc, Boolean askUser)
  918. {
  919.     GrafPtr          oldPort;
  920.     TEHandle         printerTE;
  921.     TPPrPort         printerPort;
  922.     Rect                 printView;
  923.     PageEndsArray    pageBounds;
  924.     short              nPages;
  925.     short               pageCtr;
  926.     Boolean             abort;
  927.     short                resFile;
  928.     Rect                 rectToClip;
  929.     TPrStatus         thePrinterStatus;
  930.     DialogPtr         progressDialog;
  931.  
  932.     abort = false;
  933.  
  934.     /*
  935.         Preserve the current port
  936.     */
  937.     GetPort(&oldPort);
  938.     resFile = CurResFile();
  939.     PrOpen();
  940.  
  941.     if (askUser)
  942.         if (abort = !PrJobDialog(theDoc->thePrintSetup)) {
  943.             PrClose();
  944.             
  945.             goto done;
  946.         }
  947.  
  948.     progressDialog = GetNewDialog(1005, nil, (WindowPtr)-1);
  949.  
  950.     DrawDialog(progressDialog);
  951.  
  952.     printerPort = PrOpenDoc(theDoc->thePrintSetup, nil, nil);
  953.     SetPort((GrafPtr)printerPort);
  954.  
  955.     /*
  956.         Put the window text into the printer port
  957.     */
  958.     TextFont((*theDoc->theText)->txFont);
  959.     TextSize((*theDoc->theText)->txSize);
  960.  
  961.     printView = (*(theDoc->thePrintSetup))->prInfo.rPage;
  962.     printerTE = TENew(&printView, &printView);
  963.  
  964.     HLock((Handle)((*(theDoc->theText))->hText));
  965.  
  966.     TESetText(*((*(theDoc->theText))->hText), (*(theDoc->theText))->teLength, printerTE);
  967.  
  968.     HUnlock((Handle)((*(theDoc->theText))->hText));
  969.  
  970.     /*
  971.         Work out the offsets
  972.     */
  973.     (*printerTE)->destRect = printView; /* GetPageEnds calls TECalText */
  974.  
  975.     GetPageEnds(printView.bottom-printView.top, printerTE, pageBounds, &nPages);
  976.  
  977.     TEDeactivate(printerTE);
  978.  
  979.     for (pageCtr = 0; pageCtr <= nPages-1; pageCtr++)
  980.         if (!abort) {
  981.             PrOpenPage(printerPort, nil);
  982.  
  983.             rectToClip = printView;
  984.  
  985.             if (pageCtr > 0)
  986.                 rectToClip.bottom = rectToClip.top + (pageBounds[pageCtr]-pageBounds[pageCtr-1]);
  987.             else
  988.                 rectToClip.bottom = rectToClip.top + pageBounds[pageCtr];
  989.  
  990.             ClipRect(&rectToClip);
  991.  
  992.             if (PrError() == iPrAbort)
  993.                 abort = true;
  994.  
  995.             if (! abort)
  996.                 TEUpdate(&printView, printerTE);
  997.  
  998.             if (PrError() == iPrAbort)
  999.                 abort = true;
  1000.  
  1001.             PrClosePage(printerPort);
  1002.  
  1003.             TEScroll(0,rectToClip.top-rectToClip.bottom, printerTE);
  1004.         }
  1005.  
  1006.     TEDispose(printerTE);
  1007.     PrCloseDoc(printerPort);
  1008.  
  1009.     if (( (*(theDoc->thePrintSetup))->prJob.bJDocLoop == bSpoolLoop ) &&
  1010.             ( PrError() == noErr )  &&
  1011.             (! abort))
  1012.         PrPicFile( theDoc->thePrintSetup, nil, nil, nil, &thePrinterStatus);
  1013.  
  1014.     PrClose();
  1015.  
  1016.     DisposDialog(progressDialog);
  1017.  
  1018. done:
  1019.     SetPort(oldPort);
  1020.     UseResFile(resFile);
  1021.     InvalRect(&oldPort->portRect);
  1022. }
  1023.  
  1024. void ForceStatusRedraw(WindowPtr win)
  1025. {
  1026.     GrafPtr    oldPort;
  1027.     Rect        r;
  1028.     
  1029.     GetPort(&oldPort);
  1030.     SetPort(win);
  1031.  
  1032.     r = win->portRect;
  1033.     
  1034.     r.right = 30;
  1035.     r.top   = r.bottom - 13;
  1036.     
  1037.     InvalRect(&r);
  1038.     
  1039.     SetPort(oldPort);
  1040. }
  1041.  
  1042. pascal void ShowWindowStatus()
  1043. {
  1044.      DPtr           aDocument;
  1045.     WindowPeek    aWindow;
  1046.     WindowPeek    nextWindow;
  1047.     short            curState;
  1048.  
  1049.     for (aWindow = (WindowPeek) FrontWindow(); aWindow; aWindow = nextWindow) {
  1050.         nextWindow = aWindow->nextWindow;
  1051.         if (Ours((WindowPtr) aWindow)) {
  1052.             aDocument = DPtrFromWindowPtr((WindowPtr) aWindow);
  1053.  
  1054.             if (aDocument->kind == kDocumentWindow) 
  1055.                 curState = stateDocument + stateRdWr;
  1056.             else {
  1057.                 curState = stateConsole;
  1058.                 if (aDocument->u.cons.fence == 32767)
  1059.                     curState    += stateRdOnly;
  1060.                 else if (!gRunningPerl || !aDocument->u.cons.selected)
  1061.                     curState += stateBlocked;
  1062.                 else
  1063.                     curState += stateRdWr;
  1064.             }
  1065.             
  1066.             if (curState != aDocument->lastState) {
  1067.                 aDocument->lastState = curState;
  1068.                 ForceStatusRedraw((WindowPtr) aWindow);
  1069.             }
  1070.         }
  1071.     }
  1072. }
  1073.  
  1074. pascal void DoShowWindow(WindowPtr win)
  1075. {
  1076.      WindowPeek    aWindow;
  1077.     WindowPeek    nextWindow;
  1078.  
  1079.     for (aWindow = (WindowPeek) FrontWindow(); aWindow; aWindow = nextWindow) {
  1080.         nextWindow = aWindow->nextWindow;
  1081.         if (Ours((WindowPtr) aWindow)) {
  1082.             goto done;
  1083.         }
  1084.     }
  1085.     
  1086.     SetLongMenus();
  1087. done:
  1088.     ShowWindow(win);
  1089. }
  1090.  
  1091. pascal void DoHideWindow(WindowPtr win)
  1092. {
  1093.      WindowPeek    aWindow;
  1094.     WindowPeek    nextWindow;
  1095.  
  1096.     HideWindow(win);
  1097.     
  1098.     for (aWindow = (WindowPeek) FrontWindow(); aWindow; aWindow = nextWindow) {
  1099.         nextWindow = aWindow->nextWindow;
  1100.         if (Ours((WindowPtr) aWindow)) {
  1101.             return;
  1102.         }
  1103.     }
  1104.     
  1105.     SetShortMenus();
  1106. }